home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 February / Gamestar_81_2006-02_dvd.iso / Programy / weatherpulse-setup.exe / {userappdata} / Weather Pulse / Html / xsl / hourly_style.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2004-11-22  |  5.4 KB  |  189 lines

  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/weather">
  4. <html>
  5. <head>
  6. <style type="text/css">
  7. body 
  8. margin-top: 0px;
  9. margin-bottom: 0px;
  10. margin-right:0px;
  11. margin-left: 0px;
  12. }
  13. .location 
  14.     font-family: Verdana, Arial, Helvetica, sans-serif;
  15.     font-size: 13px;
  16.     font-weight:bold;
  17.     color: #FFFFFF;
  18.     background-color:#003366;    
  19. }
  20. .title 
  21.     font-family: Verdana, Arial, Helvetica, sans-serif;
  22.     font-size: 12px;
  23.     font-weight:bold;
  24.     color: #000000;
  25. }
  26.  
  27. .footer
  28.     font-family: font-family : Verdana, Arial, Helvetica, sans-serif;
  29.     font-size: 10px;
  30.     font-weight:none;
  31.     color: #000000;
  32. }
  33. .values
  34.     font-family: Verdana, Arial, Helvetica, sans-serif;
  35.     font-size: 12px;
  36.     font-weight:none;
  37.     color: #000000;
  38. }
  39. .date
  40.     font-family: Verdana, Arial, Helvetica, sans-serif;
  41.     font-size: 12px;
  42.     font-weight:bold;
  43.     color: #003366;
  44. }
  45.  
  46. .d
  47. {
  48.    font-family: Verdana, Arial, Helvetica, sans-serif;
  49.    font-size: 12px;
  50.    font-weight: bold;
  51.    color:#FFFFFF;
  52. }
  53.  
  54. A:link     
  55.     color: #3333FF;
  56.     font-size: 12px; 
  57.     font-family: Verdana, Arial, Helvetica, sans-serif;
  58. }
  59.  
  60.  
  61. A:visited     
  62.     color: #3333FF;
  63.     font-size: 12px; 
  64.     font-family: Verdana, Arial, Helvetica, sans-serif;
  65. }
  66.  
  67.  
  68. A:active     
  69.     color: #3333FF;
  70.     font-size: 12px; 
  71.     font-family: Verdana, Arial, Helvetica, sans-serif;
  72. }
  73.  
  74. </style>
  75. </head> 
  76. <table width="100%" height="100%" border="0" cellSpacing="1" cellPadding="1" ID="Table1">
  77.   <tr>
  78.     <td colspan="9" align="left" valign="center" class="location" height="40px">
  79.         Hourly Forecast for: <xsl:value-of select="loc/dnam"></xsl:value-of>
  80.     </td>
  81.   </tr>
  82.   <tr bgcolor="#DBE2ED">
  83.     <td colspan="3" align="left" valign="center" height="20px" class="title">       
  84.     </td>
  85.     <td align="center" class="title">
  86.     Temp.<br/>(<img src="images/deg.gif"></img><xsl:value-of select="head/ut"></xsl:value-of>)
  87.     </td>
  88.     <td align="center" class="title">
  89.     Feels<br/>Like
  90.     </td>
  91.     <td align="center" class="title">
  92.     Dew<br/>Point
  93.     </td>
  94.     <td align="center" class="title">
  95.     Precip.
  96.     </td>
  97.     <td align="center" class="title">
  98.     Humid.
  99.     </td>
  100.     <td align="center" class="title">
  101.     Wind
  102.     </td>
  103.   </tr>
  104.   <xsl:variable name="unitspeed"><xsl:value-of select="head/us"></xsl:value-of></xsl:variable>
  105.   <xsl:variable name="loc"><xsl:value-of select="loc/@id"></xsl:value-of></xsl:variable>
  106.   <xsl:variable name="time"><xsl:value-of select="loc/tm"></xsl:value-of></xsl:variable>
  107.  
  108. <xsl:for-each select="hbhf/hour">
  109.    <xsl:variable name="count"><xsl:value-of select="@h"></xsl:value-of></xsl:variable>
  110.    <xsl:variable name="hour"><xsl:value-of select="@c"></xsl:value-of></xsl:variable>
  111.    <tr>
  112.    <xsl:if test="$hour > 12">
  113.       <xsl:variable name="hr" select="$hour - 12"/>
  114.       <td width="45" class="values">
  115.          <xsl:value-of select="$hr" /> PM
  116.       </td>
  117.    </xsl:if>
  118.    <xsl:if test="$hour = 12">
  119.       <xsl:variable name="hr" select="$hour"/>
  120.       <td width="45" class="values">
  121.          <xsl:value-of select="$hr" /> PM
  122.       </td>
  123.    </xsl:if>
  124.  
  125.      <xsl:if test="$hour < 12">
  126.         <xsl:if test="$hour = 0">
  127.             <td width="45" class="values">12 AM</td>      
  128.         </xsl:if>
  129.         
  130.         <xsl:if test="$hour != 0">
  131.             <td width="45" class="values"><xsl:value-of select="$hour" /> AM</td>
  132.         </xsl:if>
  133.    </xsl:if>
  134.              <td class="values">
  135.                 <xsl:variable name="med-img-dir">images\32\</xsl:variable>
  136.                 <xsl:variable name="img-ext">gif</xsl:variable>
  137.                 <xsl:variable name="iconnumber">
  138.                    <xsl:value-of select="icon"></xsl:value-of>
  139.                 </xsl:variable>
  140.                 <img src="{$med-img-dir}/{$iconnumber}.{$img-ext}"></img>
  141.              </td>
  142.             <td class="values" align="left">
  143.                 <xsl:value-of select="t"></xsl:value-of>
  144.             </td>
  145.             <td class="values" align="center">
  146.                 <xsl:value-of select="tmp"></xsl:value-of><img src="images/deg.gif"></img>
  147.             </td>
  148.             <td class="values" align="center">
  149.                 <xsl:value-of select="flik"></xsl:value-of><img src="images/deg.gif"></img>
  150.             </td>
  151.             <td class="values" align="center">
  152.                 <xsl:value-of select="dewp"></xsl:value-of><img src="images/deg.gif"></img>
  153.             </td>
  154.             <td class="values" align="center">
  155.                 <xsl:value-of select="ppcp"></xsl:value-of> %
  156.             </td>
  157.             <td class="values" align="center">
  158.                 <xsl:value-of select="hmid"></xsl:value-of> %
  159.             </td>
  160.             <td class="values" align="center">
  161.                 <xsl:value-of select="wind/s"></xsl:value-of><xsl:text> </xsl:text>
  162.                 <xsl:value-of select="$unitspeed"></xsl:value-of> 
  163.                 <xsl:text> </xsl:text>
  164.                 <xsl:value-of select="wind/t"></xsl:value-of>       
  165.             </td>
  166.             </tr>
  167. </xsl:for-each>
  168.        
  169.         <tr bgcolor="#EBEFF4">
  170.         <td colspan="9">
  171.         <font class="footer">Last updated
  172.        <xsl:value-of select="hbhf/lsup"></xsl:value-of> 
  173.        <br/><a href="http://www.w3.weather.com/weather/local/{$loc}">View this forecast at weather.com</a>
  174.        </font>
  175.         </td>
  176.         </tr>
  177.       </table>
  178.       </html>
  179.   </xsl:template>
  180. </xsl:stylesheet>